home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / fortran / fckdemo1.zip / TRANSFER.LST < prev    next >
File List  |  1994-04-12  |  2KB  |  71 lines

  1.  FORCHECK PC V11.10  MS5 compiler emulation  02-Feb-94  11:09:03  page: 1
  2.  TRANSFER.FOR  
  3.  
  4.  
  5.       1 c
  6.       2 c                       FORCHECK
  7.       3 c               Illegal Transfer of Control
  8.       4 
  9.       5         INTEGER iar(10,2)
  10.       6         LOGICAL l
  11.       7 
  12.       8         l = .TRUE.
  13.       9 
  14.      10         DO 20 i = 1, 10
  15.      11  10       IF (l) GOTO 20
  16.      12           DO 20 j = 1, 2
  17.      13  20     iar(i,j) = 0
  18.      14 
  19.      15 
  20.    20                              
  21.  **[191 E] referenced from outside DO loop, IF,ELSEIF,ELSE or CASE block
  22.      16         IF (l) GOTO 10
  23.      17 
  24.    10                              
  25.  **[190 E] transfer of control into DO loop, IF,ELSEIF,ELSE or CASE block
  26.      18         END
  27.  
  28.  FORCHECK PC V11.10           .MAIN.          02-Feb-94  11:09:03  page: 2
  29.  TRANSFER.FOR  
  30.  
  31.  
  32.  ENTRY          TYPE NARG  LINE
  33.  
  34.     .MAIN.         P
  35.  
  36.  
  37.  LABEL TYPE LINES
  38.  
  39.      10     11# 16
  40.      20 L   10  11  12  13#
  41.  
  42.  
  43.  VARIABLE  TYPE     RANK  OPERATIONS  LINES
  44.  
  45.     I       I*4                  L R  10# 13
  46.     IAR     I*4       2        A       5  13#
  47.     J       I*4                  L R  12# 13
  48.     L       L*4                A   R   6   8# 11  16
  49.    IAR                             
  50.  **[110 I] unreferenced
  51.  
  52.  FORCHECK PC V11.10  MS5 compiler emulation  02-Feb-94  11:09:03  page: 3
  53.  
  54.  
  55.  *END OF ANALYSIS*
  56.  
  57.  messages presented:
  58.   1x[110 I] unreferenced
  59.   1x[190 E] transfer of control into DO loop,IF,ELSEIF,ELSE or CASE block
  60.   1x[191 E] referenced from outside DO loop, IF,ELSEIF,ELSE or CASE block
  61.  
  62.  number of error messages:                2
  63.  number of informative messages:          1
  64.  
  65.                                       total  not-included
  66.  number of noncomment source lines:       9             9
  67.  number of nonempty comment lines:        2             2
  68.  number of statements:                    9             9
  69.  number of subprograms:                   1
  70.  number of source files:                  1
  71.